Scratch Card - Sound Sample

Novice
Scratch
PDF

Activity Checklist

  • Create a new sprite and make it resemble the sound you will be making.
  • In the sounds tab, create a new recording or import a sound. cat sound sample
  • When the sprite is clicked, broadcast the same name as your sprite.

    when Cat clicked
        broadcast [cat v]
  • Now we need to play the sound when it receives the broadcast.

    when I receive [cat v]
        play sound [cat v]
  • Finally, make the sprite change in appearance when the sound.{blockpurple} is played.

    when I receive [cat v]
        play sound [cat v]
        set size to (110) %
        wait (0.1) secs
        set size to (100) %